home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / MotifApp / ch2 / Password2 / Makefile next >
Encoding:
Makefile  |  1995-05-03  |  276 b   |  19 lines

  1. CC = CC
  2. DEBUG = -g
  3. C++FLAGS = $(DEBUG) -DFUNCPROTO -I../../ComponentLib
  4. LIBS = ../../ComponentLib/libcomponent.a  -lXm -lXt -lX11 -lXext
  5.  
  6. all:   pwtest2
  7.  
  8. pwtest2: pwtest2.o Password.o
  9.     $(CC) -o pwtest2 pwtest2.o Password.o $(LIBS)
  10.  
  11.  
  12. clobber:
  13.     rm -f *.o *~*
  14.     rm -f pwtest2
  15.  
  16.  
  17.  
  18.  
  19.